6b32531a1ac0b495c7d5e46115d517cfe3d0b37e,enterprise/src/java/org/neo4j/impl/shell/NeoApp.java,NeoApp,getRelationshipType,#String#,51
Before Change
protected RelationshipType getRelationshipType( String name )
{
// this.ensureRelTypesInitialized();
RelationshipType result = this.getNeoServer().getNeo().
getRelationshipType( name );
if ( result == null )
{
After Change
protected RelationshipType getRelationshipType( String name )
{
// this.ensureRelTypesInitialized();
RelationshipType result = ( ( EmbeddedNeo ) this.getNeoServer().
getNeo() ).getRelationshipType( name );
if ( result == null )
{
throw new RuntimeException( "No relationship type '" + name +